home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / lha / MAKEBOX.C < prev    next >
C/C++ Source or Header  |  1990-01-31  |  292b  |  16 lines

  1. #include <string.h>
  2. #include "tcclib.h"
  3.  
  4. void MakeBox( char *s )
  5. {
  6.     int p, x, xx;
  7.  
  8.     p = ( 80 - strlen( s ) ) / 2;
  9.     x = p - 3;
  10.     xx = p + strlen( s ) + 2;
  11.     if ( x  <  1 ) x  = 1;
  12.     if ( xx > 80 ) xx = 80;
  13.     ExplodeBox( x, 8, xx, 12 );
  14.     AtSay( p, 10, s );
  15. }
  16.